home *** CD-ROM | disk | FTP | other *** search
/ Internet Publisher's Toolbox 2.0 / Internet Publisher's Toolbox.iso / internet / ntserver / wtsource / irinv.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-16  |  788 b   |  32 lines

  1. /* WIDE AREA INFORMATION SERVER SOFTWARE:
  2.    No guarantees or restrictions.  See the readme file for the full standard
  3.    disclaimer.
  4.  
  5.    Brewster@think.com
  6. */
  7.  
  8. /* Copyright (c) CNIDR (see ../COPYRIGHT) */
  9.  
  10.  
  11. /* include file for irfiles.c */
  12.  
  13. #ifndef IRINV_H
  14. #define IRINV_H
  15.  
  16. #include "irfiles.h" /* for database */
  17.  
  18. long allocate_index_block _AP((long how_large, FILE* stream));
  19.  
  20. void flush_memory_hashtable_to_disk _AP((database* db, boolean completely));
  21.  
  22. long read_dictionary_index_block
  23.   _AP((long index_block,long* last_index_block,long* index_block_size,
  24.        long* number_of_occurances,char* word,FILE* stream));
  25.  
  26. long write_dictionary_index_block _AP((long number_of_occurances,
  27.                        char* word,FILE* stream));
  28.  
  29.  
  30. #endif /* ndef IRINV_H */
  31.  
  32.